home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9209.ARJ / 1009116A < prev    next >
Text File  |  1992-07-13  |  585b  |  21 lines

  1.           void  myfunction1(char *format, ...)
  2.             {     
  3.             va_list arg_ptr;
  4.             ...
  5.             va_start(arg_ptr,format);
  6.             vfprintf(stdout,format,arg_ptr);
  7.             va_end(arg_ptr);
  8.             ...
  9.             }
  10.  
  11.           void  myfunction3(char *format, ...)
  12.             {     
  13.             va_list arg_ptr1;
  14.             va_list arg_ptr2;
  15.             ...
  16.             va_start(arg_ptr1,format);
  17.             myfunction1(format,arg_ptr1); 
  18.             va_end(arg_ptr1);               
  19.             ...
  20.                         }
  21.